home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 72 / IOPROG_72.ISO / soft / Codice / Web Application in Java / eLisa / Java Web App / web / utenti / PannelloUtenti.jsp < prev    next >
Encoding:
Text File  |  2003-07-02  |  967 b   |  28 lines

  1. <%--
  2. --%>
  3. <%@ page errorPage="../include/PaginaErrore.jsp" %>
  4. <%@ taglib prefix='c' uri='http://java.sun.com/jstl/core' %>
  5.  
  6. <SPAN CLASS="sidebar-titolo">Area clienti</SPAN><BR>
  7. <c:if test="${empty sessionScope.utenteConnesso}">
  8.     <FORM ACTION="controller?op=utenti.login" METHOD="post">
  9.         Utente<BR>
  10.         <INPUT NAME="utente" SIZE="10" /><BR>
  11.         Password<BR>
  12.         <INPUT NAME="password" SIZE="10" TYPE="password" /><BR>
  13.         <INPUT TYPE="submit" VALUE="Entra"/>
  14.     </FORM>
  15.     <P>
  16.     <A HREF="controller?op=utenti.nuovo">Sei un nuovo utente?</A><BR>
  17.     <A HREF="controller?op=utenti.passwordPersa">Hai perso la password?</A><BR>
  18.     <P>
  19. </c:if>
  20. <c:if test="${!empty sessionScope.utenteConnesso}">
  21. Benvenuto <c:out value="${sessionScope.utenteConnesso.descrizione}"/>
  22. <P>
  23. <A HREF="controller?op=ordini.elenco">Ordini precedenti</A><BR>
  24. <P>
  25. <A HREF="controller?op=utenti.logout">Disconnessione</A><BR>
  26. </c:if>
  27.  
  28.